toggle menu
JxBrowser
8.1.0
jvm
switch theme
search in API
JxBrowser
/
com.teamdev.jxbrowser.spellcheck
/
[jvm]Dictionary
Dictionary
interface
Dictionary
Provides functionality for working with a spell check dictionary.
Members
Functions
add
Link copied to clipboard
abstract
fun
add
(
word
:
String
)
:
Boolean
Adds the given
word
to the dictionary and schedules a write to disk.
has
Link copied to clipboard
abstract
fun
has
(
word
:
String
)
:
Boolean
Returns
true
if the dictionary contains the given
word
.
remove
Link copied to clipboard
abstract
fun
remove
(
word
:
String
)
:
Boolean
Removes the given
word
from the dictionary and schedules a write to disk.
words
Link copied to clipboard
abstract
fun
words
(
)
:
Collection
<
String
>
Returns the words in the current dictionary or an empty collection if the dictionary does not have any word.